func math/big.subVV

15 uses

	math/big (current package)
		arith_decl.go#L16: func subVV(z, x, y []Word) (c Word)
		nat.go#L145: 	c := subVV(z[0:n], x, y)
		nat.go#L242: 		subVV(z[:n], z[n:], m)
		nat.go#L259: 	if c := subVV(z[0:n], z, x); c != 0 {
		nat.go#L329: 	if subVV(xd, x1, x0) != 0 { // x1-x0
		nat.go#L331: 		subVV(xd, x0, x1) // x0-x1
		nat.go#L336: 	if subVV(yd, y0, y1) != 0 { // y0-y1
		nat.go#L338: 		subVV(yd, y1, y0) // y1-y0
		nat.go#L542: 	if subVV(xd, x1, x0) != 0 {
		nat.go#L543: 		subVV(xd, x0, x1)
		natdiv.go#L691: 		c := subVV(u[j:j+qhl], u[j:], qhatv)
		natdiv.go#L844: 			c := subVV(qhatv[:s], qhatv[:s], v[:s])
		natdiv.go#L853: 		c := subVV(uu[:len(qhatv)], uu[:len(qhatv)], qhatv)
		natdiv.go#L877: 			c := subVV(qhatv[:s], qhatv[:s], v[:s])
		natdiv.go#L887: 	c := subVV(u[0:len(qhatv)], u[0:len(qhatv)], qhatv)